Put all tests in a suite, and order them in a nicer way.
This makes the test output look better.
install_dir: testexecdir,
dependencies: libgtk_dep),
args: [ '--tap', '-k', ],
- env: installed_test_env)
+ env: installed_test_env,
+ suite: 'a11y')
endforeach
a11y_installed_tests = [
install: get_option('install-tests'),
install_dir: join_paths(installed_test_bindir, 'css'),
dependencies: libgtk_dep)
-test('css/api', test_api)
+test('api', test_api, suite: 'css')
if get_option('install-tests')
conf = configuration_data()
install: get_option('install-tests'),
install_dir: testexecdir,
dependencies: libgtk_dep)
-test('css/nodes/test-nodes', test_nodes)
+test('test-nodes', test_nodes, suite: 'css')
test_data = [
'box.ltr.nodes',
install: get_option('install-tests'),
install_dir: testexecdir,
dependencies: libgtk_dep)
-test('css/parser/css-parser', test_parser)
+test('css-parser', test_parser, suite: 'css')
test_data = [
'animation-crash-3.12.css',
install_dir: testexecdir,
dependencies: libgtk_dep,
)
-test('css/style/test-style', test_style)
+test('test-style', test_style, suite: 'css')
test_data = [
'adjacent-states.css',
'G_ENABLE_DIAGNOSTIC=0',
]
+subdir('gdk')
subdir('gsk')
-subdir('tools')
subdir('gtk')
-subdir('gdk')
subdir('css')
subdir('a11y')
-subdir('reftests')
+subdir('tools')
+#subdir('reftests')
test('test-@0@'.format(t), bash,
args : 'test-@0@'.format(t),
workdir : meson.current_build_dir(),
- env : test_env)
+ env : test_env,
+ suite: 'tools')
endforeach
endif # bash found